home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 2
/
Gold Medal Software Volume 2 (Gold Medal) (1994).iso
/
prog
/
strpchrt.arj
/
BC.MAK
next >
Wrap
Text File
|
1993-07-31
|
1KB
|
38 lines
#----------------------------------------------------------------------
# Makefile for Strip Chart Library Example Programs
# This makefile recompiles all the example programs.
#
# Compiler: Borland C++ Version 3.1 Small Memory Model
#
# Note: Change the "LIBPATH" and "INCLUDEPATH" macros below
# if you installed the Borland files in a directory other than
# "C:\BORLANDC\"
#
# Usage: MAKE -f BC.MAK
#
#----------------------------------------------------------------------
# Macro for path of Strip Chart library file
SCLIB = scbcs.lib
# Macros for Borland library and include files
# Change this if you installed the Borland files in a different directory.
LIBPATH = C:\BORLANDC\LIB
INCLUDEPATH = C:\BORLANDC\INCLUDE
# Macro for compiler and options
CC = bcc -ms -DBORLAND=1 -I$(INCLUDEPATH) -L$(LIBPATH) -f -O2
# Impilicit rule for compiling example programs
.c.exe:
$(CC) $*.c $(SCLIB)
# Targets and dependencies
all: clean ex_test.exe ex_trace.exe ex_step.exe
REM Done!
clean:
del ex_test.exe
del ex_trace.exe
del ex_step.exe